home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
s
/
ep_voice2-toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
197b
|
18 lines
/* EaglePlayer - toggles Voice2 */
address 'rexx_EP'
options results
status G vo2
if result == "no" then do
voice2 yes
say "Voice 2 now on"
end
else do
voice2 no
say "Voice 2 now off"
end